func runtime.cheaprand

15 uses

	runtime (current package)
		iface.go#L483: 	if cheaprand()&1023 != 0 {
		iface.go#L490: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		iface.go#L583: 	if cheaprand()&1023 != 0 {
		iface.go#L592: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		mbitmap.go#L761: 		off := alignUp(uintptr(cheaprand())%dataSize, goarch.PtrSize)
		mbitmap.go#L768: 		size -= alignDown(uintptr(cheaprand())%size, goarch.PtrSize)
		mprof.go#L692: 	if int64(cheaprand())%lt.timeRate == 0 {
		mprof.go#L696: 	if rate > 0 && int64(cheaprand())%rate == 0 {
		proc.go#L3664: 		for enum := stealOrder.start(cheaprand()); !enum.done(); enum.next() {
		proc.go#L5054: 	newg.trackingSeq = uint8(cheaprand())
		rand.go#L191: func cheaprand() uint32 {
		rand.go#L236: 	return int64(cheaprand())<<31 ^ int64(cheaprand())
		rand.go#L257: 	return uint32((uint64(cheaprand()) * uint64(n)) >> 32)
		sema.go#L359: 	s.ticket = cheaprand() | 1